com.sabro.jbusiness.sys
Enum SysTarefa.Tipo
java.lang.Object
java.lang.Enum<SysTarefa.Tipo>
com.sabro.jbusiness.sys.SysTarefa.Tipo
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<SysTarefa.Tipo>
- Enclosing class:
- SysTarefa
public static enum SysTarefa.Tipo
- extends java.lang.Enum<SysTarefa.Tipo>
Tipos de tarefa definidas
Method Summary |
char |
getTipoChar()
|
static SysTarefa.Tipo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SysTarefa.Tipo[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
MenuRaiz
public static final SysTarefa.Tipo MenuRaiz
AtalhoMenu
public static final SysTarefa.Tipo AtalhoMenu
AtalhoCadastro
public static final SysTarefa.Tipo AtalhoCadastro
AtalhoConsulta
public static final SysTarefa.Tipo AtalhoConsulta
ScriptJava
public static final SysTarefa.Tipo ScriptJava
ScriptSql
public static final SysTarefa.Tipo ScriptSql
ScriptVb
public static final SysTarefa.Tipo ScriptVb
ExecutaClasseJava
public static final SysTarefa.Tipo ExecutaClasseJava
CriaJobSql
public static final SysTarefa.Tipo CriaJobSql
CriaStoredProcedure
public static final SysTarefa.Tipo CriaStoredProcedure
CriaFuncaoSql
public static final SysTarefa.Tipo CriaFuncaoSql
CriaTriggerSql
public static final SysTarefa.Tipo CriaTriggerSql
CriaViewSql
public static final SysTarefa.Tipo CriaViewSql
values
public static final SysTarefa.Tipo[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(SysTarefa.Tipo c : SysTarefa.Tipo.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static SysTarefa.Tipo valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
getTipoChar
public char getTipoChar()